return "LOOP FOR X SECONDS: FRAME BEHAVIOR" & RETURN & RETURN & "This behavior will make the playback head loop for a fixed length of time over a certain number of frames, then jump to a chosen marker. You can choose whether the playback head jumps immediately at the end of the period, or whether it should run right through to the last frame of the span." & RETURN & RETURN & "Drag this behavior to the frame channel of the Score Window, then stretch it out over the frames you wish to loop over. If you wish to remain on the same frame, then simply do not stretch out the sprite." & RETURN & RETURN & "PERMITTED MEMBER TYPES:" & RETURN & "Frame behavior" & RETURN & RETURN & "PARAMETERS:" & RETURN & "* Duration of loop (1 tick - 120 hours)" & RETURN & "* Marker to jump to at the end of the period" & RETURN & "* Playback head jumps immediately | at the end of the cycle"
end
on getBehaviorTooltip me
return "Frame behavior." & RETURN & "Stretch this behavior over a sequence" & RETURN & "of frames to make the playback head" & RETURN & "loop for a fixed length of time then" & RETURN & "jump to a chosen marker." & RETURN & RETURN & "Option: ensure that the cycle is fully" & RETURN & "completed before the playback head jumps."
end
on beginSprite me
Initialize(me)
end
on exitFrame me
CheckTimeOut(me)
end
on Initialize me
thisSprite = sprite(the currentSpriteNum)
myStartFrame = thisSprite.startFrame
myEndFrame = thisSprite.endFrame
if symbolp(myTimeOutFrame) then
case myTimeOutFrame of
#previous:
jumpToFrame = marker(-1)
#loop:
jumpToFrame = marker(0)
#next:
jumpToFrame = marker(1)
end case
else
jumpToFrame = marker(myTimeOutFrame)
end if
if the currentSpriteNum then
ErrorAlert(me, #invalidChannel, the currentSpriteNum)
end if
if not jumpToFrame then
jumpToFrame = myEndFrame + 1
ErrorAlert(me, #missingMarker, jumpToFrame)
else
if (jumpToFrame >= myStartFrame) and (jumpToFrame <= myEndFrame) then
if myImmediateJump or (the frame = myEndFrame) then
go(myTimeOutFrame)
end if
else
if the frame = myEndFrame then
go(myStartFrame)
end if
end if
end
on ErrorAlert me, theError, data
case theError of
#getPDLError:
alert("Error: This behavior should dropped on the Stage or into the Behavior Channel of the Score." & RETURN & RETURN & "Hit OK and then delete this behavior from the sprite." & RETURN & RETURN & "For more information on deleting Behaviors, see the Help system.")
alert("BEHAVIOR ERROR: Frame " & the frame & ", Sprite " & me.spriteNum & RETURN & RETURN & "Frame behavior " & behaviorName & "is set to jump to marker '" & myTimeOutFrame & "'. This marker cannot be found. Choose a valid marker in the Behavior Parameters dialog." & RETURN & RETURN & "In the meantime, frame " & data & " will be used instead.")
end if
#endlessLoop:
if the runMode = "Author" then
if symbolp(myTimeOutFrame) then
case myTimeOutFrame of
#previous:
jumpToFrame = marker(-1)
#loop:
jumpToFrame = marker(0)
#next:
jumpToFrame = marker(1)
end case
else
jumpToFrame = marker(myTimeOutFrame)
end if
alert("BEHAVIOR ERROR: Frame " & the frame & ", Sprite " & me.spriteNum & RETURN & RETURN & "Frame behavior " & behaviorName & "is set to jump to marker '" & myTimeOutFrame & "' (frame " & jumpToFrame & "). This is within the span of the behavior and will cause an endless loop." & RETURN & RETURN & "Frame " & data & " will be used instead.")
end if
end case
end case
end
on getPropertyDescriptionList me
if the currentSpriteNum then
return ErrorAlert(me, #getPDLError)
end if
nextMarker = nextMarker(me)
return [#myTimeOut: [#comment: "Loop over selected frames for...", #format: #integer, #range: [#min: 1, #max: 120], #default: 30], #myTimeUnit: [#comment: EMPTY, #format: #symbol, #range: [#ticks, #seconds, #minutes, #hours], #default: #seconds], #myTimeOutFrame: [#comment: "... then jump to marker:", #format: #marker, #default: nextMarker], #myImmediateJump: [#comment: "When the time is up:", #format: #string, #range: ["complete the loop", "jump immediately"], #default: "jump immediately"]]